home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / dbconsts.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-01-29  |  4.1 KB  |  86 lines

  1. unit DbConsts;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SInvalidFieldSize = 'Invalid field size';
  7.   SInvalidFieldRegistration = 'Invalid field registration';
  8.   SUnknownFieldType = 'Field ''%s'' is of an unknown type';
  9.   SFieldNameMissing = 'Field name missing';
  10.   SDuplicateFieldName = 'Duplicate field name ''%s''';
  11.   SFieldNotFound = '%s: Field ''%s'' not found';
  12.   SFieldAccessError = 'Cannot access field ''%s'' as type %s';
  13.   SFieldValueError = 'Invalid value for field ''%s''';
  14.   SFieldRangeError = '%g is not a valid value for field ''%s''. The allowed range is %g to %g';
  15.   SInvalidIntegerValue = '''%s'' is not a valid integer value for field ''%s''';
  16.   SInvalidBoolValue = '''%s'' is not a valid boolean value for field ''%s''';
  17.   SInvalidFloatValue = '''%s'' is not a valid floating point value for field ''%s''';
  18.   SFieldTypeMismatch = 'Field ''%s'' is not of the expected type';
  19.   SInvalidVarByteArray = 'Invalid variant type or size';
  20.   SFieldOutOfRange = 'Value of field ''%s'' is out of range';
  21.   SBCDOverflow = '(Overflow)';
  22.   SFieldRequired = 'Field ''%s'' must have a value';
  23.   SDataSetMissing = 'Field ''%s'' has no dataset';
  24.   SInvalidCalcType = 'Field ''%s'' cannot be a calculated or lookup field';
  25.   SFieldReadOnly = 'Field ''%s'' cannot be modified';
  26.   SFieldIndexError = 'Field index out of range';
  27.   SNoFieldIndexes = 'No index currently active';
  28.   SNotIndexField = 'Field ''%s'' is not indexed and cannot be modified';
  29.   SIndexFieldMissing = 'Cannot access index field ''%s''';
  30.   SDuplicateIndexName = 'Duplicate index name ''%s''';
  31.   SNoIndexForFields = 'Table ''%s'' has no index for fields ''%s''';
  32.   SCircularDataLink = 'Circular datalinks are not allowed';
  33.   SLookupInfoError = 'Lookup information for field ''%s'' is incomplete';
  34.   SDataSourceChange = 'DataSource cannot be changed';
  35.   SDataSetOpen = 'Cannot perform this operation on an open dataset';
  36.   SNotEditing = 'Dataset not in edit or insert mode';
  37.   SDataSetClosed = 'Cannot perform this operation on a closed dataset';
  38.   SDataSetEmpty = 'Cannot perform this operation on an empty dataset';
  39.   SDataSetReadOnly = 'Cannot modify a read-only dataset';
  40.   STextFalse = 'False';
  41.   STextTrue = 'True';
  42.  
  43.   SFirstRecord = 'First record';
  44.   SPriorRecord = 'Prior record';
  45.   SNextRecord = 'Next record';
  46.   SLastRecord = 'Last record';
  47.   SInsertRecord = 'Insert record';
  48.   SDeleteRecord = 'Delete record';
  49.   SEditRecord = 'Edit record';
  50.   SPostEdit = 'Post edit';
  51.   SCancelEdit = 'Cancel edit';
  52.   SRefreshRecord = 'Refresh data';
  53.   SDeleteRecordQuestion = 'Delete record?';
  54.   SDeleteMultipleRecordsQuestion = 'Delete all selected records?';
  55.   SRecordNotFound = 'Record not found';
  56.   SDataSourceFixed = 'Operation not allowed in a DBCtrlGrid';
  57.   SNotReplicatable = 'Control cannot be used in a DBCtrlGrid';
  58.   SPropDefByLookup = 'Property already defined by lookup field';
  59.   STooManyColumns = 'Grid requested to display more than 256 columns';
  60.  
  61.   SRptLoadFailed = 'Unable to load %s';
  62.   SRptDesignTimeValue = 'SQL Directory';
  63.   SRptRunTimeValue = 'Runtime Directory';
  64.   SRptBindBuffer = 'Data too large for Bind Buffer';
  65.   SRptDataSetNotAvailable = 'Requested DataSets is not Avaliable';
  66.   SRptSharedMemoryError = 'Unable To Create Shared Memory';
  67.   SRptNoDataSetAvailable = 'No DataSets Avaliable';
  68.   SRptInvalidDataSet = 'Invalid DataSet Requested';
  69.   SInvalidServer = 'Invalid Server Type';
  70.   SReportVerb = 'Edit Report...';
  71.   SIncorrectVersion = 'Component requires a later version of ReportSmith';
  72.   SCannotGetVersionInfo = 'Unable to obtain Version details from %s';
  73.   SUnableToLoadAPIDLL = 'Unable to load ReportSmith DLL: %s';
  74.   SNoFile = 'The requested Reportsmith file ''%s'' does not exist';
  75.   SReportFilter = 'Report Files (*.rpt)|*.rpt';
  76.   SNoDataProvider = 'Missing data provider or data packet';
  77.   SAutoSessionExclusive = 'Cannot enable AutoSession property with more than one session on a form or data-module';
  78.   SAutoSessionExists = 'Cannot add a session to the form or data-module while session ''%s'' has AutoSession enabled';
  79.   SAutoSessionActive = 'Cannot modify SessionName while AutoSession is enabled';
  80.   SInvalidDataPacket = 'Invalid data packet';
  81.  
  82. implementation
  83.  
  84. end.
  85.  
  86.